home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / tcsh / dist / tw.spell.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-21  |  5.2 KB  |  165 lines

  1. /* $Header: /home/hyperion/mu/christos/src/sys/tcsh-6.01/RCS/tw.spell.c,v 3.3 1991/10/12 04:23:51 christos Exp $ */
  2. /*
  3.  * tw.spell.c: Spell check words
  4.  */
  5. /*-
  6.  * Copyright (c) 1980, 1991 The Regents of the University of California.
  7.  * All rights reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  * 3. All advertising materials mentioning features or use of this software
  18.  *    must display the following acknowledgement:
  19.  *    This product includes software developed by the University of
  20.  *    California, Berkeley and its contributors.
  21.  * 4. Neither the name of the University nor the names of its contributors
  22.  *    may be used to endorse or promote products derived from this software
  23.  *    without specific prior written permission.
  24.  *
  25.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  26.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  31.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  33.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  34.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  35.  * SUCH DAMAGE.
  36.  */
  37. #include "sh.h"
  38.  
  39. RCSID("$Id: tw.spell.c,v 3.3 1991/10/12 04:23:51 christos Exp $")
  40.  
  41. #include "tw.h"
  42.  
  43. extern Char **command_list;
  44. extern int numcommands;
  45.  
  46. /* spell_me : return corrrectly spelled filename.  From K&P spname */
  47. int
  48. spell_me(oldname, oldsize, looking_for_cmd)
  49.     Char   *oldname;
  50.     int     oldsize, looking_for_cmd;
  51. {
  52.     /* The +1 is to fool hp's optimizer */
  53.     Char    guess[FILSIZ + 1], newname[FILSIZ + 1];
  54.     register Char *new = newname, *old = oldname;
  55.     register Char *p, *cp, *ws;
  56.     bool    foundslash = 0;
  57.     int     retval;
  58.  
  59.     for (;;) {
  60.     while (*old == '/') {    /* skip '/' */
  61.         *new++ = *old++;
  62.         foundslash = 1;
  63.     }
  64.     /* do not try to correct spelling of single letter words */
  65.     if (*old != '\0' && old[1] == '\0')
  66.         *new++ = *old++;
  67.     *new = '\0';
  68.     if (*old == '\0') {
  69.         retval = (StrQcmp(oldname, newname) != 0);
  70.         copyn(oldname, newname, oldsize);    /* shove it back. */
  71.         return retval;
  72.     }
  73.     p = guess;        /* start at beginning of buf */
  74.     if (newname[0])        /* add current dir if any */
  75.         for (cp = newname; *cp; cp++)
  76.         if (p < guess + FILSIZ)
  77.             *p++ = *cp;
  78.     ws = p;
  79.     for (; *old != '/' && *old != '\0'; old++)/* add current file name */
  80.         if (p < guess + FILSIZ)
  81.         *p++ = *old;
  82.     *p = '\0';        /* terminate it */
  83.  
  84.     /*
  85.      * Don't tell t_search we're looking for cmd if no '/' in the name so
  86.      * far but there are later - or it will look for *all* commands
  87.      */
  88.     /* (*should* say "looking for directory" whenever '/' is next...) */
  89.     retval = t_search(guess, p, SPELL, FILSIZ,
  90.               looking_for_cmd && (foundslash || *old != '/'), 1);
  91.     if (retval >= 4 || retval < 0)
  92.         return -1;        /* hopeless */
  93.     for (p = ws; *new = *p++;)
  94.         new++;
  95.     }
  96. /*NOTREACHED*/
  97. #ifdef notdef
  98.     return (0);            /* lint on the vax under mtXinu complains! */
  99. #endif
  100. }
  101.  
  102. #define EQ(s,t)    (StrQcmp(s,t) == 0)
  103.  
  104. /*
  105.  * spdist() is taken from Kernighan & Pike,
  106.  *  _The_UNIX_Programming_Environment_
  107.  * and adapted somewhat to correspond better to psychological reality.
  108.  * (Note the changes to the return values)
  109.  *
  110.  * According to Pollock and Zamora, CACM April 1984 (V. 27, No. 4),
  111.  * page 363, the correct order for this is:
  112.  * OMISSION = TRANSPOSITION > INSERTION > SUBSTITUTION
  113.  * thus, it was exactly backwards in the old version. -- PWP
  114.  */
  115.  
  116. int
  117. spdist(s, t)
  118.     register Char *s, *t;
  119. {
  120.     for (; (*s & TRIM) == (*t & TRIM); t++, s++)
  121.     if (*t == '\0')
  122.         return 0;        /* exact match */
  123.     if (*s) {
  124.     if (*t) {
  125.         if (s[1] && t[1] && (*s & TRIM) == (t[1] & TRIM) &&
  126.         (*t & TRIM) == (s[1] & TRIM) && EQ(s + 2, t + 2))
  127.         return 1;    /* transposition */
  128.         if (EQ(s + 1, t + 1))
  129.         return 3;    /* 1 char mismatch */
  130.     }
  131.     if (EQ(s + 1, t))
  132.         return 2;        /* extra character */
  133.     }
  134.     if (*t && EQ(s, t + 1))
  135.     return 1;        /* missing character */
  136.     return 4;
  137. }
  138.  
  139. int
  140. spdir(extended_name, tilded_dir, entry, name)
  141.     Char   *extended_name;
  142.     Char   *tilded_dir;
  143.     Char   *entry;
  144.     Char   *name;
  145. {
  146.     Char    path[1024];
  147.     Char   *s;
  148.     Char    oldch;
  149.  
  150.     for (s = name; *s != 0 && (*s & TRIM) == (*entry & TRIM); s++, entry++);
  151.     if (*s == 0 || s[1] == 0 || *entry != 0)
  152.     return 0;
  153.  
  154.     (void) Strcpy(path, tilded_dir);
  155.     oldch = *s;
  156.     *s = '/';
  157.     catn(path, name, sizeof(path) / sizeof(Char));
  158.     if (access(short2str(path), F_OK) == 0) {
  159.     (void) Strcpy(extended_name, name);
  160.     return 1;
  161.     }
  162.     *s = oldch;
  163.     return 0;
  164. }
  165.